home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / mlocate.postrm < prev    next >
Text File  |  2008-06-26  |  255b  |  17 lines

  1. #! /bin/sh
  2.  
  3. set -e
  4.  
  5. VARDIR="/var/lib/mlocate"
  6.  
  7. if [ "$1" = "purge" ]; then
  8.     if [ -d "$VARDIR" ]; then
  9.     rm -f "$VARDIR/mlocate.db"
  10.     rmdir --ignore-fail-on-non-empty "$VARDIR"
  11.     fi
  12.  
  13.     dpkg-statoverride --remove /usr/bin/mlocate || test $? -eq 2
  14. fi
  15.  
  16.  
  17.